PCA Index Dashboard Examples

PCA Index Dashboard Examples#

This script was last run at 2024-03-27 10:13:06.765527+00:00 (UTC)
In US/Central Time, this is 2024-03-27 05:13:06.765527-05:00
# Change one of the plots on this page to anything else
import numpy as np
from matplotlib import pyplot as plt

x = np.linspace(0, 8, 1000)
y = x*x

plt.figure(figsize=(10, 6))
plt.plot(x, y)
plt.title('Change one of the plots on this page to anything else')
plt.xlabel('X')
plt.ylabel('y')
plt.show()
../_images/d01383f10038dc284c91e6d107dabbf2687e40080e3b010137987e94f85b7495.png
../_images/c36c7ca0ff9e8b5af228befd8b0a011c349b24367168726fd18a5ccda936ea09.png
../_images/90fe1ba37319dd8dcaafbeb21c19468699a9449236f9c520f045c8565820b356.png